summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/(system)/email-log/page.tsx
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-11-17 12:06:56 +0900
committerjoonhoekim <26rote@gmail.com>2025-11-17 12:06:56 +0900
commitb9ce61033c2f5bc6ec8eb3db200b96058f013bf8 (patch)
tree2366c08f7120fcf49ca3f36c290a2f97d3b0a551 /app/[lng]/evcp/(evcp)/(system)/email-log/page.tsx
parent182dfce1ba5381389a0df05cd9d4a2ea541b229d (diff)
(김준회) 오류 수정: params and searchParams: Nextjs 15부터 Promise 타입으로 변경됨: 서버 컴포넌트에서는 await으로 resolve 하도록 처리, Promise 타입 명시적으로 추가(Generic)
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(system)/email-log/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/(system)/email-log/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/[lng]/evcp/(evcp)/(system)/email-log/page.tsx b/app/[lng]/evcp/(evcp)/(system)/email-log/page.tsx
index b73674e4..41001cc7 100644
--- a/app/[lng]/evcp/(evcp)/(system)/email-log/page.tsx
+++ b/app/[lng]/evcp/(evcp)/(system)/email-log/page.tsx
@@ -14,7 +14,7 @@ export const metadata: Metadata = {
}
interface EmailLogPageProps {
- searchParams: SearchParams
+ searchParams: Promise<SearchParams>
}
export default async function EmailLogPage(props: EmailLogPageProps) {